html {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  height: 100vh;
  background: #e4e4e4 !important; 
  margin: 0rem;
  padding-top: 100px;
  overflow-x: hidden;
}

* {
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  user-select: none; /* Prevent text selection */
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none; /* For Firefox */
  -ms-user-select: none; /* For Internet Explorer/Edge */
}

.navbar {
  background-color: #e4e4e4 !important;
  border-bottom: 2px solid #3d3434 !important;
}

.navbar-brand h1 {
  color: #3d3434;
  font-family: "Gasoek One", sans-serif;
  font-size: 2rem;
}

.navbar-nav {
  gap: 2rem;
}

@media (min-width: 1200px) and (max-width: 1325px){
  .navbar-nav {
    gap: 0rem;
  }
}

.nav-link {
  color: #3d3434 !important;
}

.btn-custom {
  color: #fff !important;
  padding: 0.5rem 1rem;
}

.offcanvas-header {
	background-color: #e4e4e4;
}

.offcanvas-body {
	background-color: #e4e4e4;
  font-family: "Gasoek One Regular", sans-serif;
  font-weight: 100;
  font-size: 2rem;
  color: #3d3434;
}

@media (max-width: 1199px) {
  .offcanvas-body {
    justify-content: center;
  }
}

@media (min-width: 1200px){
  .offcanvas-body {
    justify-content: end;
  }
}

@media (min-width: 320px) and (max-width: 374px){
  .offcanvas-body a {
    font-size: 2rem;
    line-height: 0.8;
  }
}

@media (min-width: 375px) and (max-width: 424px){
  .offcanvas-body a {
    font-size: 2rem;
    line-height: 0.8;
  }
}

@media (min-width: 425px) and (max-width: 767px){
  .offcanvas-header img {
    width: 40px;
  }
  
  .offcanvas-body a {
    font-size: 3rem;
    line-height: 0.8;
  }
}

@media (min-width: 768px) and (max-width: 1023px){
  .offcanvas-body a {
    font-size: 4rem;
    line-height: 0.8;
  }
}

@media (min-width: 1024px) and (max-width: 1199px){
  .offcanvas-body a {
    font-size: 6rem;
    line-height: 0.8;
  }
}

.modal-title {
  font-family: 'Gasoek One', sans-serif;
  font-size: 2rem;
  color: #3d3434;
}

/* HERO SECTION */
.hero-section {
  background-color: #e4e4e4;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-text {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1;
  text-align: center;
}

.gasoek {
  font-family: 'Gasoek One', sans-serif;
  font-size: 8rem;
  color: #3d3434;
}

.fire-script {
  font-family: 'Pinyon Script', cursive;
  font-size: 18rem;
  color: #d21913;
  align-items: right;
  display: inline-block;
}

/* 🔥 Wiggle animation */
@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(-2deg); }
  75% { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}

.wiggle {
  animation: wiggle 2s ease-in-out infinite;
}

/* Featured Performances */
.featured-performances {
  background-color: #e4e4e4;
  padding: 2rem 0;
}

.section-title {
  font-family: 'Gasoek One', sans-serif;
  font-size: 6rem;
  text-align: center;
  color: #3d3434;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 30vw;
  gap: 0;
  width: 100vw;
}

.video-thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-thumb:hover img {
  transform: scale(1.2);
}

.video-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  text-shadow: 1px 1px 5px black;
}

.video-caption h3 {
  font-family: 'Gasoek One', sans-serif;
  font-size: 1.5rem;
  margin: 0;
}

.video-caption p {
  font-size: 1rem;
  margin: 0;
}

/* Full-width row for HBS021 */
.video-thumb.wide {
  grid-column: span 2;
}

.video-caption.wide {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  text-shadow: 1px 1px 5px black;
}

.video-caption.wide h3 {
  font-family: 'Gasoek One', sans-serif;
  font-size: 1.5rem;
  margin: 0;
}

.video-caption.wide p {
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 425px) {
  .video-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  /* Make sure wide items don’t span multiple columns on small screens */
  .video-thumb.wide {
    grid-column: span 1;
  }
}

/* SEE MORE */
.see-more {
  text-align: center;
  margin-bottom: 3rem;
}

.see-more-button {
  background-color: #e4e4e4;
  color: #3d3434;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10rem;
  text-align: center;
  display: inline-block;
  transition: transform 0.4s ease;
}

.see-more-button:hover {
  background-color: #e4e4e4;
  color: #d21913;
  transform: scale(1.1);
}

/* Modal Video Player Performances */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-modal video {
  width: 80%;
  max-height: 80%;
  background: black;
}

.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}



/* footer */
.site-footer {
  background-color: #e4e4e4;
  border-top: 2px solid #3d3434;
  padding: 3rem 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-left li {
  font-size: 2rem;
  font-weight: 100;
  color: #3d3434;
  font-family: 'Gasoek One', sans-serif;
  line-height: 1.4;
  list-style: none;
  text-align: left;
}

.footer-center .footer-logo {
  width: 60px;
  height: 60px;
  border: 1px solid #3d3434;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #3d3434;
}

.footer-logo img {
  width: 100%;
  max-width: 150px;
}

.footer-right {
  text-align: center;
  color: #3d3434;
}

.social-icons {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.social-icons i {
  margin: 0 0.5rem;
  cursor: pointer;
}


@media (min-width: 320px) and (max-width: 424px){
  .hero-bottom {
    margin-top: -2rem;
  }

  .gasoek {
    font-size: 4rem;
  }
  
  .fire-script {
    font-size: 5rem;
  }

  .section-title {
    font-size: 2rem;
    text-align: left;
  }

  .video-thumb {
  max-height: 200px;
}

  .video-thumb img {
    min-height: 250px;
    max-height: 250px;
  }

  .video-thumb.wide img{
    grid-column: 1;
  }

  .video-caption h3 {
    font-size: 1rem;
  }
  
  .video-caption p {
    font-size: 1rem;
  }

  .see-more-button {
    font-size: 3rem;
  }
}

@media (min-width: 425px) and (max-width: 767px){
  .hero-bottom {
    margin-top: -2rem;
  }

  .gasoek {
    font-size: 2.5rem;
  }
  
  .fire-script {
    font-size: 5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .video-caption h3 {
    font-size: 1rem;
  }
  
  .video-caption p {
    font-size: 1rem;
  }

  .see-more-button {
    font-size: 4rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px){
  .hero-bottom {
    margin-top: -3rem;
  }

  .gasoek {
    font-size: 4rem;
  }
  
  .fire-script {
    font-size: 8rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .see-more-button {
    font-size: 6rem;
  }
}

@media (min-width: 1024px) and (max-width: 1439px){
  .hero-bottom {
    margin-top: -6rem;
  }

  .gasoek {
    font-size: 6rem;
  }
  
  .fire-script {
    font-size: 16rem;
  }

  .section-title {
    font-size: 4rem;
  }

  .see-more-button {
    font-size: 8rem;
  }
}